home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Blogowanie poza sfera / Flock 1.0 beta / flock-1.0RC3.en-US.win32.exe / flock / greprefs / all.js next >
Text File  |  2007-10-18  |  64KB  |  1,348 lines

  1. /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is mozilla.org code.
  16.  *
  17.  * The Initial Developer of the Original Code is
  18.  * Netscape Communications Corporation.
  19.  * Portions created by the Initial Developer are Copyright (C) 1998
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *   Benjamin Smedberg <bsmedberg@covad.net>
  24.  *
  25.  * Alternatively, the contents of this file may be used under the terms of
  26.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  27.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.  * in which case the provisions of the GPL or the LGPL are applicable instead
  29.  * of those above. If you wish to allow use of your version of this file only
  30.  * under the terms of either the GPL or the LGPL, and not to allow others to
  31.  * use your version of this file under the terms of the MPL, indicate your
  32.  * decision by deleting the provisions above and replace them with the notice
  33.  * and other provisions required by the GPL or the LGPL. If you do not delete
  34.  * the provisions above, a recipient may use your version of this file under
  35.  * the terms of any one of the MPL, the GPL or the LGPL.
  36.  *
  37.  * ***** END LICENSE BLOCK ***** */
  38.  
  39. /* The prefs in this file are shipped with the GRE and should apply to all
  40.  * embedding situations. Application-specific preferences belong somewhere else,
  41.  * for example xpfe/bootstrap/browser-prefs.js
  42.  *
  43.  * Platform-specific #ifdefs at the end of this file override the generic
  44.  * entries at the top.
  45.  */
  46.  
  47. // SYNTAX HINTS:  dashes are delimiters.  Use underscores instead.
  48. //  The first character after a period must be alphabetic.
  49.  
  50. pref("keyword.URL", "http://www.google.com/search?ie=UTF-8&oe=utf-8&q=");
  51. pref("keyword.enabled", false);
  52. pref("general.useragent.locale", "chrome://navigator/locale/navigator.properties");
  53. pref("general.useragent.contentlocale", "chrome://navigator-region/locale/region.properties");
  54.  
  55. pref("general.config.obscure_value", 13); // for MCD .cfg files
  56.  
  57. // maximum number of dated backups to keep at any time
  58. pref("browser.bookmarks.max_backups",       5);
  59.  
  60. pref("browser.cache.disk.enable",           true);
  61. pref("browser.cache.disk.capacity",         51200);
  62. pref("browser.cache.memory.enable",         true);
  63. //pref("browser.cache.memory.capacity",     -1);
  64. // -1 = determine dynamically, 0 = none, n = memory capacity in kilobytes
  65. pref("browser.cache.disk_cache_ssl",        false);
  66. // 0 = once-per-session, 1 = each-time, 2 = never, 3 = when-appropriate/automatically
  67. pref("browser.cache.check_doc_frequency",   3);
  68. // Fastback caching - if this pref is negative, then we calculate the number
  69. // of content viewers to cache based on the amount of available memory.
  70. pref("browser.sessionhistory.max_total_viewers", -1);
  71.  
  72. pref("browser.display.use_document_fonts",  1);  // 0 = never, 1 = quick, 2 = always
  73. pref("browser.display.use_document_colors", true);
  74. pref("browser.display.use_system_colors",   false);
  75. pref("browser.display.foreground_color",    "#000000");
  76. pref("browser.display.background_color",    "#FFFFFF");
  77. pref("browser.display.force_inline_alttext", false); // true = force ALT text for missing images to be layed out inline
  78. // 0 = no external leading, 
  79. // 1 = use external leading only when font provides, 
  80. // 2 = add extra leading both internal leading and external leading are zero
  81. pref("browser.display.normal_lineheight_calc_control", 2);
  82. pref("browser.display.show_image_placeholders", true); // true = show image placeholders while image is loaded and when image is broken
  83. pref("browser.anchor_color",                "#0000EE");
  84. pref("browser.active_color",                "#EE0000");
  85. pref("browser.visited_color",               "#551A8B");
  86. pref("browser.underline_anchors",           true);
  87. pref("browser.blink_allowed",               true);
  88. pref("browser.enable_automatic_image_resizing", false);
  89.  
  90. pref("browser.display.use_focus_colors",    false);
  91. pref("browser.display.focus_background_color", "#117722");
  92. pref("browser.display.focus_text_color",     "#ffffff");
  93. pref("browser.display.focus_ring_width",     1);
  94. pref("browser.display.focus_ring_on_anything", false);
  95.  
  96. pref("browser.helperApps.alwaysAsk.force",  false);
  97. pref("browser.helperApps.neverAsk.saveToDisk", "");
  98. pref("browser.helperApps.neverAsk.openFile", "");
  99.  
  100. // xxxbsmedberg: where should prefs for the toolkit go?
  101. pref("browser.chrome.toolbar_tips",         true);
  102. // 0 = Pictures Only, 1 = Text Only, 2 = Pictures and Text
  103. pref("browser.chrome.toolbar_style",        2);
  104. // max image size for which it is placed in the tab icon for tabbrowser.
  105. // if 0, no images are used for tab icons for image documents.
  106. pref("browser.chrome.image_icons.max_size", 1024);
  107.  
  108.  
  109. pref("accessibility.browsewithcaret", false);
  110. pref("accessibility.warn_on_browsewithcaret", true);
  111.  
  112. //@line 113 "/cygdrive/K/tinderbuild/src/flock/mozilla/modules/libpref/src/init/all.js"
  113. // Tab focus model bit field:
  114. // 1 focuses text controls, 2 focuses other form elements, 4 adds links.
  115. // Most users will want 1, 3, or 7.
  116. // On OS X, we use Full Keyboard Access system preference,
  117. // unless accessibility.tabfocus is set by the user.
  118. pref("accessibility.tabfocus", 7);
  119. pref("accessibility.tabfocus_applies_to_xul", false);
  120. //@line 124 "/cygdrive/K/tinderbuild/src/flock/mozilla/modules/libpref/src/init/all.js"
  121.  
  122. pref("accessibility.usetexttospeech", "");
  123. pref("accessibility.usebrailledisplay", "");
  124. pref("accessibility.accesskeycausesactivation", true);
  125.  
  126. // Type Ahead Find
  127. pref("accessibility.typeaheadfind", true);
  128. pref("accessibility.typeaheadfind.autostart", true);
  129. // casesensitive: controls the find bar's case-sensitivity
  130. //     0 - "never"  (case-insensitive)
  131. //     1 - "always" (case-sensitive)
  132. // other - "auto"   (case-sensitive for mixed-case input, insensitive otherwise)
  133. pref("accessibility.typeaheadfind.casesensitive", 0);
  134. pref("accessibility.typeaheadfind.linksonly", true);
  135. pref("accessibility.typeaheadfind.startlinksonly", false);
  136. pref("accessibility.typeaheadfind.timeout", 4000);
  137. pref("accessibility.typeaheadfind.enabletimeout", true);
  138. pref("accessibility.typeaheadfind.soundURL", "beep");
  139. pref("accessibility.typeaheadfind.enablesound", true);
  140.  
  141. pref("browser.history_expire_days", 9);
  142.  
  143. // loading and rendering of framesets and iframes
  144. pref("browser.frames.enabled", true);
  145.  
  146. // form submission
  147. pref("browser.forms.submit.backwards_compatible", true);
  148.  
  149. // xxxbsmedberg more toolkit prefs?
  150. // Tab browser preferences.
  151. pref("browser.tabs.autoHide", true);
  152. pref("browser.tabs.forceHide", false);
  153. pref("browser.tabs.warnOnClose", true);
  154. pref("browser.tabs.warnOnCloseOther", true);
  155. pref("browser.tabs.warnOnOpen", true);
  156. pref("browser.tabs.maxOpenBeforeWarn", 15);
  157. // 0 = append, 1 = replace
  158. pref("browser.tabs.loadGroup", 1);
  159.  
  160. pref("toolkit.scrollbox.scrollIncrement", 20);
  161. pref("toolkit.scrollbox.clickToScroll.scrollDelay", 150);
  162.  
  163. // lets new tab/window load something different than first window
  164. // -1 - use navigator startup preference
  165. //  0 - loads blank page
  166. //  1 - loads home page
  167. //  2 - loads last page visited
  168. pref("browser.tabs.loadOnNewTab", 0);
  169. pref("browser.windows.loadOnNewWindow", 1);
  170.  
  171. // view source
  172. pref("view_source.syntax_highlight", true);
  173. pref("view_source.wrap_long_lines", false);
  174.  
  175. // dispatch left clicks only to content in browser (still allows clicks to chrome/xul)
  176. pref("nglayout.events.dispatchLeftClickOnly", true);
  177.  
  178. // whether or not to use xbl form controls
  179. pref("nglayout.debug.enable_xbl_forms", false);
  180.  
  181. // size of scrollbar snapping region
  182. pref("slider.snapMultiplier", 6);
  183.  
  184. // Default to using the system filepicker if possible, but allow
  185. // toggling to use the XUL filepicker
  186. pref("ui.allow_platform_file_picker", true);
  187.  
  188. // option to choose plug-in finder
  189. pref("application.use_ns_plugin_finder", false);
  190.  
  191. // URI fixup prefs
  192. pref("browser.fixup.alternate.enabled", true);
  193. pref("browser.fixup.alternate.prefix", "www.");
  194. pref("browser.fixup.alternate.suffix", ".com");
  195. pref("browser.fixup.hide_user_pass", true);
  196.  
  197. // Print header customization
  198. // Use the following codes:
  199. // &T - Title
  200. // &U - Document URL
  201. // &D - Date/Time
  202. // &P - Page Number
  203. // &PT - Page Number "of" Page total
  204. // Set each header to a string containing zero or one of these codes
  205. // and the code will be replaced in that string by the corresponding data
  206. pref("print.print_headerleft", "&T");
  207. pref("print.print_headercenter", "");
  208. pref("print.print_headerright", "&U");
  209. pref("print.print_footerleft", "&PT");
  210. pref("print.print_footercenter", "");
  211. pref("print.print_footerright", "&D");
  212. pref("print.show_print_progress", true);
  213.  
  214. // xxxbsmedberg: more toolkit prefs
  215.  
  216. // When this is set to false each window has its own PrintSettings
  217. // and a chnage in one window does not affect the others
  218. pref("print.use_global_printsettings", true);
  219.  
  220. // Use the native dialog or the XP dialog?
  221. pref("print.use_native_print_dialog", false);
  222.  
  223. // Save the Printings after each print job
  224. pref("print.save_print_settings", true);
  225.  
  226. pref("print.whileInPrintPreview", true);
  227.  
  228. // Cache old Presentation when going into Print Preview
  229. pref("print.always_cache_old_pres", false);
  230.  
  231. // Enables you to specify the gap from the edge of the paper to the margin
  232. // this is used by both Printing and Print Preview
  233. pref("print.print_edge_top", 0); // 1/100 of an inch
  234. pref("print.print_edge_left", 0); // 1/100 of an inch
  235. pref("print.print_edge_right", 0); // 1/100 of an inch
  236. pref("print.print_edge_bottom", 0); // 1/100 of an inch
  237.  
  238. // Pref used by the spellchecker extension to control the 
  239. // maximum number of misspelled words that will be underlined
  240. // in a document.
  241. pref("extensions.spellcheck.inline.max-misspellings", 500);
  242.  
  243. // Prefs used by libeditor. Prefs specific to seamonkey composer
  244. // belong in mozilla/editor/ui/composer.js
  245.  
  246. pref("editor.use_custom_colors", false);
  247. pref("editor.htmlWrapColumn", 72);
  248. pref("editor.singleLine.pasteNewlines",     1);
  249. pref("editor.quotesPreformatted",            false);
  250. pref("editor.use_css",                       true);
  251. pref("editor.css.default_length_unit",       "px");
  252. pref("editor.resizing.preserve_ratio",       true);
  253. pref("editor.positioning.offset",            0);
  254.  
  255.  
  256. // Default Capability Preferences: Security-Critical! 
  257. // Editing these may create a security risk - be sure you know what you're doing
  258. //pref("capability.policy.default.barprop.visible.set", "UniversalBrowserWrite");
  259.  
  260. pref("capability.policy.default_policynames", "mailnews");
  261.  
  262. pref("capability.policy.default.DOMException.code", "allAccess");
  263. pref("capability.policy.default.DOMException.message", "allAccess");
  264. pref("capability.policy.default.DOMException.name", "allAccess");
  265. pref("capability.policy.default.DOMException.result", "allAccess");
  266. pref("capability.policy.default.DOMException.toString.get", "allAccess");
  267.  
  268. pref("capability.policy.default.History.back.get", "allAccess");
  269. pref("capability.policy.default.History.current", "UniversalBrowserRead");
  270. pref("capability.policy.default.History.forward.get", "allAccess");
  271. pref("capability.policy.default.History.go.get", "allAccess");
  272. pref("capability.policy.default.History.item", "UniversalBrowserRead");
  273. pref("capability.policy.default.History.next", "UniversalBrowserRead");
  274. pref("capability.policy.default.History.previous", "UniversalBrowserRead");
  275. pref("capability.policy.default.History.toString", "UniversalBrowserRead");
  276.  
  277. pref("capability.policy.default.HTMLDocument.open.get", "allAccess");
  278.  
  279. pref("capability.policy.default.Location.hash.set", "allAccess");
  280. pref("capability.policy.default.Location.href.set", "allAccess");
  281. pref("capability.policy.default.Location.replace.get", "allAccess");
  282.  
  283. pref("capability.policy.default.Navigator.preference", "allAccess");
  284. pref("capability.policy.default.Navigator.preferenceinternal.get", "UniversalPreferencesRead");
  285. pref("capability.policy.default.Navigator.preferenceinternal.set", "UniversalPreferencesWrite");
  286.  
  287. pref("capability.policy.default.Window.blur.get", "allAccess");
  288. pref("capability.policy.default.Window.close.get", "allAccess");
  289. pref("capability.policy.default.Window.closed.get", "allAccess");
  290. pref("capability.policy.default.Window.Components", "allAccess");
  291. pref("capability.policy.default.Window.document.get", "allAccess");
  292. pref("capability.policy.default.Window.focus.get", "allAccess");
  293. pref("capability.policy.default.Window.frames.get", "allAccess");
  294. pref("capability.policy.default.Window.history.get", "allAccess");
  295. pref("capability.policy.default.Window.length.get", "allAccess");
  296. pref("capability.policy.default.Window.location", "allAccess");
  297. pref("capability.policy.default.Window.opener.get", "allAccess");
  298. pref("capability.policy.default.Window.parent.get", "allAccess");
  299. pref("capability.policy.default.Window.self.get", "allAccess");
  300. pref("capability.policy.default.Window.top.get", "allAccess");
  301. pref("capability.policy.default.Window.window.get", "allAccess");
  302.  
  303. pref("capability.policy.default.Selection.addSelectionListener", "UniversalXPConnect");
  304. pref("capability.policy.default.Selection.removeSelectionListener", "UniversalXPConnect");
  305.  
  306. // Restrictions on the DOM for mail/news - see bugs 66938 and 84545
  307. pref("capability.policy.mailnews.sites", "mailbox: imap: news:");
  308.  
  309. pref("capability.policy.mailnews.*.attributes.get", "noAccess");
  310. pref("capability.policy.mailnews.*.baseURI.get", "noAccess");
  311. pref("capability.policy.mailnews.*.data.get", "noAccess");
  312. pref("capability.policy.mailnews.*.getAttribute", "noAccess");
  313. pref("capability.policy.mailnews.HTMLDivElement.getAttribute", "sameOrigin");
  314. pref("capability.policy.mailnews.*.getAttributeNS", "noAccess");
  315. pref("capability.policy.mailnews.*.getNamedItem", "noAccess");
  316. pref("capability.policy.mailnews.*.getNamedItemNS", "noAccess");
  317. pref("capability.policy.mailnews.*.host.get", "noAccess");
  318. pref("capability.policy.mailnews.*.hostname.get", "noAccess");
  319. pref("capability.policy.mailnews.*.href.get", "noAccess");
  320. pref("capability.policy.mailnews.*.innerHTML.get", "noAccess");
  321. pref("capability.policy.mailnews.*.lowSrc.get", "noAccess");
  322. pref("capability.policy.mailnews.*.nodeValue.get", "noAccess");
  323. pref("capability.policy.mailnews.*.pathname.get", "noAccess");
  324. pref("capability.policy.mailnews.*.protocol.get", "noAccess");
  325. pref("capability.policy.mailnews.*.src.get", "noAccess");
  326. pref("capability.policy.mailnews.*.substringData.get", "noAccess");
  327. pref("capability.policy.mailnews.*.text.get", "noAccess");
  328. pref("capability.policy.mailnews.*.title.get", "noAccess");
  329. pref("capability.policy.mailnews.DOMException.toString", "noAccess");
  330. pref("capability.policy.mailnews.HTMLAnchorElement.toString", "noAccess");
  331. pref("capability.policy.mailnews.HTMLDocument.domain", "noAccess");
  332. pref("capability.policy.mailnews.HTMLDocument.URL", "noAccess");
  333. pref("capability.policy.mailnews.Location.toString", "noAccess");
  334. pref("capability.policy.mailnews.Range.toString", "noAccess");
  335. pref("capability.policy.mailnews.Window.blur", "noAccess");
  336. pref("capability.policy.mailnews.Window.focus", "noAccess");
  337. pref("capability.policy.mailnews.Window.innerWidth.set", "noAccess");
  338. pref("capability.policy.mailnews.Window.innerHeight.set", "noAccess");
  339. pref("capability.policy.mailnews.Window.moveBy", "noAccess");
  340. pref("capability.policy.mailnews.Window.moveTo", "noAccess");
  341. pref("capability.policy.mailnews.Window.name.set", "noAccess");
  342. pref("capability.policy.mailnews.Window.outerHeight.set", "noAccess");
  343. pref("capability.policy.mailnews.Window.outerWidth.set", "noAccess");
  344. pref("capability.policy.mailnews.Window.resizeBy", "noAccess");
  345. pref("capability.policy.mailnews.Window.resizeTo", "noAccess");
  346. pref("capability.policy.mailnews.Window.screenX.set", "noAccess");
  347. pref("capability.policy.mailnews.Window.screenY.set", "noAccess");
  348. pref("capability.policy.mailnews.Window.sizeToContent", "noAccess");
  349. pref("capability.policy.mailnews.document.load", "noAccess");
  350. pref("capability.policy.mailnews.XMLHttpRequest.channel", "noAccess");
  351. pref("capability.policy.mailnews.XMLHttpRequest.getInterface", "noAccess");
  352. pref("capability.policy.mailnews.XMLHttpRequest.responseXML", "noAccess");
  353. pref("capability.policy.mailnews.XMLHttpRequest.responseText", "noAccess");
  354. pref("capability.policy.mailnews.XMLHttpRequest.status", "noAccess");
  355. pref("capability.policy.mailnews.XMLHttpRequest.statusText", "noAccess");
  356. pref("capability.policy.mailnews.XMLHttpRequest.abort", "noAccess");
  357. pref("capability.policy.mailnews.XMLHttpRequest.getAllResponseHeaders", "noAccess");
  358. pref("capability.policy.mailnews.XMLHttpRequest.getResponseHeader", "noAccess");
  359. pref("capability.policy.mailnews.XMLHttpRequest.open", "noAccess");
  360. pref("capability.policy.mailnews.XMLHttpRequest.send", "noAccess");
  361. pref("capability.policy.mailnews.XMLHttpRequest.setRequestHeader", "noAccess");
  362. pref("capability.policy.mailnews.XMLHttpRequest.readyState", "noAccess");
  363. pref("capability.policy.mailnews.XMLHttpRequest.overrideMimeType", "noAccess");
  364. pref("capability.policy.mailnews.XMLHttpRequest.onload", "noAccess");
  365. pref("capability.policy.mailnews.XMLHttpRequest.onerror", "noAccess");
  366. pref("capability.policy.mailnews.XMLHttpRequest.onreadystatechange", "noAccess");
  367. pref("capability.policy.mailnews.XMLSerializer.serializeToString", "noAccess");
  368. pref("capability.policy.mailnews.XMLSerializer.serializeToStream", "noAccess");
  369. pref("capability.policy.mailnews.DOMParser.parseFromString", "noAccess");
  370. pref("capability.policy.mailnews.DOMParser.parseFromStream", "noAccess");
  371. pref("capability.policy.mailnews.SOAPCall.transportURI", "noAccess");
  372. pref("capability.policy.mailnews.SOAPCall.verifySourceHeader", "noAccess");
  373. pref("capability.policy.mailnews.SOAPCall.invoke", "noAccess");
  374. pref("capability.policy.mailnews.SOAPCall.asyncInvoke", "noAccess");
  375. pref("capability.policy.mailnews.SOAPResponse.fault", "noAccess");
  376. pref("capability.policy.mailnews.SOAPEncoding.styleURI", "noAccess");
  377. pref("capability.policy.mailnews.SOAPEncoding.getAssociatedEncoding", "noAccess");
  378. pref("capability.policy.mailnews.SOAPEncoding.setEncoder", "noAccess");
  379. pref("capability.policy.mailnews.SOAPEncoding.getEncoder", "noAccess");
  380. pref("capability.policy.mailnews.SOAPEncoding.setDecoder", "noAccess");
  381. pref("capability.policy.mailnews.SOAPEncoding.setDecoder", "noAccess");
  382. pref("capability.policy.mailnews.SOAPEncoding.getDecoder", "noAccess");
  383. pref("capability.policy.mailnews.SOAPEncoding.defaultEncoder", "noAccess");
  384. pref("capability.policy.mailnews.SOAPEncoding.defaultDecoder", "noAccess");
  385. pref("capability.policy.mailnews.SOAPEncoding.schemaCollection", "noAccess");
  386. pref("capability.policy.mailnews.SOAPEncoding.encode", "noAccess");
  387. pref("capability.policy.mailnews.SOAPEncoding.decode", "noAccess");
  388. pref("capability.policy.mailnews.SOAPEncoding.mapSchemaURI", "noAccess");
  389. pref("capability.policy.mailnews.SOAPEncoding.unmapSchemaURI", "noAccess");
  390. pref("capability.policy.mailnews.SOAPEncoding.getInternalSchemaURI", "noAccess");
  391. pref("capability.policy.mailnews.SOAPEncoding.getExternalSchemaURI", "noAccess");
  392. pref("capability.policy.mailnews.SOAPFault.element", "noAccess");
  393. pref("capability.policy.mailnews.SOAPFault.faultNamespaceURI", "noAccess");
  394. pref("capability.policy.mailnews.SOAPFault.faultCode", "noAccess");
  395. pref("capability.policy.mailnews.SOAPFault.faultString", "noAccess");
  396. pref("capability.policy.mailnews.SOAPFault.faultActor", "noAccess");
  397. pref("capability.policy.mailnews.SOAPFault.detail", "noAccess");
  398. pref("capability.policy.mailnews.SOAPHeaderBlock.actorURI", "noAccess");
  399. pref("capability.policy.mailnews.SOAPHeaderBlock.mustUnderstand", "noAccess");
  400. pref("capability.policy.mailnews.SOAPParameter", "noAccess");
  401. pref("capability.policy.mailnews.SOAPPropertyBagMutator.propertyBag", "noAccess");
  402. pref("capability.policy.mailnews.SOAPPropertyBagMutator.addProperty", "noAccess");
  403. pref("capability.policy.mailnews.SchemaLoader.load", "noAccess");
  404. pref("capability.policy.mailnews.SchemaLoader.loadAsync", "noAccess");
  405. pref("capability.policy.mailnews.SchemaLoader.processSchemaElement", "noAccess");
  406. pref("capability.policy.mailnews.SchemaLoader.onLoad", "noAccess");
  407. pref("capability.policy.mailnews.SchemaLoader.onError", "noAccess");
  408. pref("capability.policy.mailnews.WSDLLoader.load", "noAccess");
  409. pref("capability.policy.mailnews.WSDLLoader.loadAsync", "noAccess");
  410. pref("capability.policy.mailnews.WSDLLoader.onLoad", "noAccess");
  411. pref("capability.policy.mailnews.WSDLLoader.onError", "noAccess");
  412. pref("capability.policy.mailnews.WebServiceProxyFactory.createProxy", "noAccess");
  413. pref("capability.policy.mailnews.WebServiceProxyFactory.createProxyAsync", "noAccess");
  414. pref("capability.policy.mailnews.WebServiceProxyFactory.onLoad", "noAccess");
  415. pref("capability.policy.mailnews.WebServiceProxyFactory.onError", "noAccess");
  416.  
  417. // XMLExtras
  418. pref("capability.policy.default.XMLHttpRequest.channel", "noAccess");
  419. pref("capability.policy.default.XMLHttpRequest.getInterface", "noAccess");
  420. pref("capability.policy.default.DOMParser.parseFromStream", "noAccess");
  421.  
  422. // Clipboard
  423. pref("capability.policy.default.Clipboard.cutcopy", "noAccess");
  424. pref("capability.policy.default.Clipboard.paste", "noAccess");
  425.  
  426. // Scripts & Windows prefs
  427. pref("dom.disable_image_src_set",           false);
  428. pref("dom.disable_window_flip",             false);
  429. pref("dom.disable_window_move_resize",      false);
  430. pref("dom.disable_window_status_change",    false);
  431.  
  432. pref("dom.disable_window_open_feature.titlebar",    false);
  433. pref("dom.disable_window_open_feature.close",       false);
  434. pref("dom.disable_window_open_feature.toolbar",     false);
  435. pref("dom.disable_window_open_feature.location",    false);
  436. pref("dom.disable_window_open_feature.directories", false);
  437. pref("dom.disable_window_open_feature.personalbar", false);
  438. pref("dom.disable_window_open_feature.menubar",     false);
  439. pref("dom.disable_window_open_feature.scrollbars",  false);
  440. pref("dom.disable_window_open_feature.resizable",   false);
  441. pref("dom.disable_window_open_feature.minimizable", false);
  442. pref("dom.disable_window_open_feature.status",      true);
  443.  
  444. pref("dom.allow_scripts_to_close_windows",          false);
  445.  
  446. pref("dom.disable_open_during_load",                false);
  447. pref("dom.popup_maximum",                           20);
  448. pref("dom.popup_allowed_events", "change click dblclick mouseup reset submit");
  449. pref("dom.disable_open_click_delay", 1000);
  450.  
  451. pref("dom.storage.enabled", true);
  452.  
  453. // Disable popups from plugins by default
  454. //   0 = openAllowed
  455. //   1 = openControlled
  456. //   2 = openAbused
  457. pref("privacy.popups.disable_from_plugins", 2);
  458.  
  459. pref("dom.event.contextmenu.enabled",       true);
  460.  
  461. pref("javascript.enabled",                  true);
  462. pref("javascript.allow.mailnews",           false);
  463. pref("javascript.options.strict",           false);
  464.  
  465. // advanced prefs
  466. pref("security.enable_java",                true);
  467. pref("advanced.mailftp",                    false);
  468. pref("image.animation_mode",                "normal");
  469.  
  470. // If there is ever a security firedrill that requires
  471. // us to block certian ports global, this is the pref 
  472. // to use.  Is is a comma delimited list of port numbers
  473. // for example:
  474. //   pref("network.security.ports.banned", "1,2,3,4,5");
  475. // prevents necko connecting to ports 1-5 unless the protocol
  476. // overrides.
  477.  
  478. // Default action for unlisted external protocol handlers
  479. pref("network.protocol-handler.external-default", true);      // OK to load
  480. pref("network.protocol-handler.warn-external-default", true); // warn before load
  481.  
  482. // Prevent using external protocol handlers for these schemes
  483. pref("network.protocol-handler.external.hcp", false);
  484. pref("network.protocol-handler.external.vbscript", false);
  485. pref("network.protocol-handler.external.javascript", false);
  486. pref("network.protocol-handler.external.data", false);
  487. pref("network.protocol-handler.external.ms-help", false);
  488. pref("network.protocol-handler.external.shell", false);
  489. pref("network.protocol-handler.external.vnd.ms.radio", false);
  490. //@line 496 "/cygdrive/K/tinderbuild/src/flock/mozilla/modules/libpref/src/init/all.js"
  491. pref("network.protocol-handler.external.disk", false);
  492. pref("network.protocol-handler.external.disks", false);
  493. pref("network.protocol-handler.external.afp", false);
  494.  
  495. // An exposed protocol handler is one that can be used in all contexts.  A
  496. // non-exposed protocol handler is one that can only be used internally by the
  497. // application.  For example, a non-exposed protocol would not be loaded by the
  498. // application in response to a link click or a X-remote openURL command.
  499. // Instead, it would be deferred to the system's external protocol handler.
  500. // Only internal/built-in protocol handlers can be marked as exposed.
  501.  
  502. // This pref controls the default settings.  Per protocol settings can be used
  503. // to override this value.
  504. pref("network.protocol-handler.expose-all", true);
  505.  
  506. // Example: make IMAP an exposed protocol
  507. // pref("network.protocol-handler.expose.imap", true);
  508.  
  509. pref("network.hosts.smtp_server",           "mail");
  510. pref("network.hosts.pop_server",            "mail");
  511.  
  512. // <http>
  513. pref("network.http.version", "1.1");      // default
  514. // pref("network.http.version", "1.0");   // uncomment this out in case of problems
  515. // pref("network.http.version", "0.9");   // it'll work too if you're crazy
  516. // keep-alive option is effectively obsolete. Nevertheless it'll work with
  517. // some older 1.0 servers:
  518.  
  519. pref("network.http.proxy.version", "1.1");    // default
  520. // pref("network.http.proxy.version", "1.0"); // uncomment this out in case of problems
  521.                                               // (required if using junkbuster proxy)
  522.  
  523. // enable caching of http documents
  524. pref("network.http.use-cache", true);
  525.  
  526. // this preference can be set to override the socket type used for normal
  527. // HTTP traffic.  an empty value indicates the normal TCP/IP socket type.
  528. pref("network.http.default-socket-type", "");
  529.  
  530. pref("network.http.keep-alive", true); // set it to false in case of problems
  531. pref("network.http.proxy.keep-alive", true);
  532. pref("network.http.keep-alive.timeout", 300);
  533.  
  534. // limit the absolute number of http connections.
  535. pref("network.http.max-connections", 24);
  536.  
  537. // limit the absolute number of http connections that can be established per
  538. // host.  if a http proxy server is enabled, then the "server" is the proxy
  539. // server.  Otherwise, "server" is the http origin server.
  540. pref("network.http.max-connections-per-server", 8);
  541.  
  542. // if network.http.keep-alive is true, and if NOT connecting via a proxy, then
  543. // a new connection will only be attempted if the number of active persistent
  544. // connections to the server is less then max-persistent-connections-per-server.
  545. pref("network.http.max-persistent-connections-per-server", 2);
  546.  
  547. // if network.http.keep-alive is true, and if connecting via a proxy, then a
  548. // new connection will only be attempted if the number of active persistent
  549. // connections to the proxy is less then max-persistent-connections-per-proxy.
  550. pref("network.http.max-persistent-connections-per-proxy", 4);
  551.  
  552. // amount of time (in seconds) to suspend pending requests, before spawning a
  553. // new connection, once the limit on the number of persistent connections per
  554. // host has been reached.  however, a new connection will not be created if
  555. // max-connections or max-connections-per-server has also been reached.
  556. pref("network.http.request.max-start-delay", 10);
  557.  
  558. // Headers
  559. pref("network.http.accept.default", "text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5");
  560. pref("network.http.sendRefererHeader",      2); // 0=don't send any, 1=send only on clicks, 2=send on image requests as well
  561.  
  562. // Controls whether we send HTTPS referres to other HTTPS sites.
  563. // By default this is enabled for compatibility (see bug 141641)
  564. pref("network.http.sendSecureXSiteReferrer", true);
  565.  
  566. // Maximum number of consecutive redirects before aborting.
  567. pref("network.http.redirection-limit", 20);
  568.  
  569. // Enable http compression: comment this out in case of problems with 1.1
  570. // NOTE: support for "compress" has been disabled per bug 196406.
  571. pref("network.http.accept-encoding" ,"gzip,deflate");
  572.  
  573. pref("network.http.pipelining"      , false);
  574. pref("network.http.proxy.pipelining", false);
  575.  
  576. // Max number of requests in the pipeline
  577. pref("network.http.pipelining.maxrequests" , 4);
  578.  
  579. // </http>
  580.  
  581. // This preference controls whether or not internationalized domain names (IDN)
  582. // are handled.  IDN requires a nsIIDNService implementation.
  583. pref("network.enableIDN", true);
  584.  
  585. // This preference, if true, causes all UTF-8 domain names to be normalized to
  586. // punycode.  The intention is to allow UTF-8 domain names as input, but never
  587. // generate them from punycode.
  588. pref("network.IDN_show_punycode", false);
  589.  
  590. // TLDs with "network.IDN.whitelist.tld" explicitly set to true are treated as 
  591. // IDN-safe. Otherwise, they're treated as unsafe and punycode will be used
  592. // for displaying them in the UI (e.g. URL bar). Note that these preferences
  593. // are referred to ONLY when "network.IDN_show_punycode" is false. In other
  594. // words, all IDNs will be shown in punycode if "network.IDN_show_punycode"
  595. // is true.
  596.  
  597. // ccTLDs
  598. pref("network.IDN.whitelist.ac", true);
  599. pref("network.IDN.whitelist.at", true);
  600. pref("network.IDN.whitelist.br", true);
  601. pref("network.IDN.whitelist.ch", true);
  602. pref("network.IDN.whitelist.cl", true);
  603. pref("network.IDN.whitelist.cn", true);
  604. pref("network.IDN.whitelist.de", true);
  605. pref("network.IDN.whitelist.dk", true);
  606. pref("network.IDN.whitelist.fi", true);
  607. pref("network.IDN.whitelist.gr", true);
  608. pref("network.IDN.whitelist.hu", true);
  609. pref("network.IDN.whitelist.io", true);
  610. pref("network.IDN.whitelist.is", true);
  611. pref("network.IDN.whitelist.jp", true);
  612. pref("network.IDN.whitelist.kr", true);
  613. pref("network.IDN.whitelist.li", true);
  614. pref("network.IDN.whitelist.lt", true);
  615. pref("network.IDN.whitelist.no", true);
  616. pref("network.IDN.whitelist.pl", true);
  617. pref("network.IDN.whitelist.se", true);
  618. pref("network.IDN.whitelist.sh", true);
  619. pref("network.IDN.whitelist.th", true);
  620. pref("network.IDN.whitelist.tm", true);
  621. pref("network.IDN.whitelist.tw", true);
  622. pref("network.IDN.whitelist.vn", true);
  623.  
  624. // non-ccTLDs
  625. pref("network.IDN.whitelist.biz", true);
  626. pref("network.IDN.whitelist.cat", true);
  627. pref("network.IDN.whitelist.info", true);
  628. pref("network.IDN.whitelist.museum", true);
  629. pref("network.IDN.whitelist.org", true);
  630.  
  631. // If a domain includes any of the following characters, it may be a spoof 
  632. // attempt and so we always display the domain name as punycode. This would 
  633. // override the settings "network.IDN_show_punycode" and 
  634. // "network.IDN.whitelist.*".
  635. pref("network.IDN.blacklist_chars", "\u0020\u00A0\u00BC\u00BD\u01C3\u0337\u0338\u05C3\u05F4\u06D4\u0702\u115F\u1160\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u200B\u2024\u2027\u2028\u2029\u202F\u2039\u203A\u2044\u205F\u2154\u2155\u2156\u2159\u215A\u215B\u215F\u2215\u23AE\u29F6\u29F8\u2AFB\u2AFD\u2FF0\u2FF1\u2FF2\u2FF3\u2FF4\u2FF5\u2FF6\u2FF7\u2FF8\u2FF9\u2FFA\u2FFB\u3000\u3002\u3014\u3015\u3033\u3164\u321D\u321E\u33AE\u33AF\u33C6\u33DF\uFE14\uFE15\uFE3F\uFE5D\uFE5E\uFEFF\uFF0E\uFF0F\uFF61\uFFA0\uFFF9\uFFFA\uFFFB\uFFFC\uFFFD");
  636.  
  637. // This preference specifies a list of domains for which DNS lookups will be
  638. // IPv4 only. Works around broken DNS servers which can't handle IPv6 lookups
  639. // and/or allows the user to disable IPv6 on a per-domain basis. See bug 68796.
  640. pref("network.dns.ipv4OnlyDomains", ".doubleclick.net");
  641.  
  642. // This preference can be used to turn off IPv6 name lookups. See bug 68796.
  643. pref("network.dns.disableIPv6", false);
  644.  
  645. // This preference controls whether or not URLs with UTF-8 characters are
  646. // escaped.  Set this preference to TRUE for strict RFC2396 conformance.
  647. pref("network.standard-url.escape-utf8", true);
  648.  
  649. // This preference controls whether or not URLs are always encoded and sent as
  650. // UTF-8.
  651. pref("network.standard-url.encode-utf8", false);
  652.  
  653. // Idle timeout for ftp control connections - 5 minute default
  654. pref("network.ftp.idleConnectionTimeout", 300);
  655.  
  656. // directory listing format
  657. // 2: HTML
  658. // 3: XUL directory viewer
  659. // all other values are treated like 2
  660. pref("network.dir.format", 2);
  661.  
  662. // enables the prefetch service (i.e., prefetching of <link rel="next"> URLs).
  663. pref("network.prefetch-next", true);
  664.  
  665.  
  666. // The following prefs pertain to the negotiate-auth extension (see bug 17578),
  667. // which provides transparent Kerberos or NTLM authentication using the SPNEGO
  668. // protocol.  Each pref is a comma-separated list of keys, where each key has
  669. // the format:
  670. //   [scheme "://"] [host [":" port]]
  671. // For example, "foo.com" would match "http://www.foo.com/bar", etc.
  672.  
  673. // This list controls which URIs can use the negotiate-auth protocol.  This
  674. // list should be limited to the servers you know you'll need to login to.
  675. pref("network.negotiate-auth.trusted-uris", "");
  676. // This list controls which URIs can support delegation.
  677. pref("network.negotiate-auth.delegation-uris", "");
  678.  
  679. // Allow SPNEGO by default when challenged by a proxy server.
  680. pref("network.negotiate-auth.allow-proxies", true);
  681.  
  682. // Path to a specific gssapi library
  683. pref("network.negotiate-auth.gsslib", "");
  684.  
  685. // Specify if the gss lib comes standard with the OS
  686. pref("network.negotiate-auth.using-native-gsslib", true);
  687.  
  688. //@line 694 "/cygdrive/K/tinderbuild/src/flock/mozilla/modules/libpref/src/init/all.js"
  689.  
  690. // Default to using the SSPI intead of GSSAPI on windows 
  691. pref("network.auth.use-sspi", true);
  692.  
  693. //@line 699 "/cygdrive/K/tinderbuild/src/flock/mozilla/modules/libpref/src/init/all.js"
  694.  
  695. // The following prefs are used to enable automatic use of the operating
  696. // system's NTLM implementation to silently authenticate the user with their
  697. // Window's domain logon.  The trusted-uris pref follows the format of the
  698. // trusted-uris pref for negotiate authentication.
  699. pref("network.automatic-ntlm-auth.allow-proxies", true);
  700. pref("network.automatic-ntlm-auth.trusted-uris", "");
  701.  
  702. // This preference controls whether or not the LM hash will be included in
  703. // response to a NTLM challenge.  By default, this is disabled since servers
  704. // should almost never need the LM hash, and the LM hash is what makes NTLM
  705. // authentication less secure.  See bug 250691 for further details.
  706. // NOTE: automatic-ntlm-auth which leverages the OS-provided NTLM
  707. //       implementation will not be affected by this preference.
  708. pref("network.ntlm.send-lm-response", false);
  709.  
  710. // sspitzer:  change this back to "news" when we get to beta.
  711. // for now, set this to news.mozilla.org because you can only
  712. // post to the server specified by this pref.
  713. pref("network.hosts.nntp_server",           "news.mozilla.org");
  714.  
  715. pref("permissions.default.image",           1); // 1-Accept, 2-Deny, 3-dontAcceptForeign
  716. pref("network.image.warnAboutImages",       false);
  717. pref("network.proxy.type",                  0);
  718. pref("network.proxy.ftp",                   "");
  719. pref("network.proxy.ftp_port",              0);
  720. pref("network.proxy.gopher",                "");
  721. pref("network.proxy.gopher_port",           0);
  722. pref("network.proxy.http",                  "");
  723. pref("network.proxy.http_port",             0);
  724. pref("network.proxy.ssl",                   "");
  725. pref("network.proxy.ssl_port",              0);
  726. pref("network.proxy.socks",                 "");
  727. pref("network.proxy.socks_port",            0);
  728. pref("network.proxy.socks_version",         5);
  729. pref("network.proxy.socks_remote_dns",      false);
  730. pref("network.proxy.no_proxies_on",         "localhost, 127.0.0.1");
  731. pref("network.proxy.failover_timeout",      1800); // 30 minutes
  732. pref("network.online",                      true); //online/offline
  733. pref("network.cookie.cookieBehavior",       0); // 0-Accept, 1-dontAcceptForeign, 2-dontUse, 3-p3p
  734. pref("network.cookie.disableCookieForMailNews", true); // disable all cookies for mail
  735. pref("network.cookie.lifetimePolicy",       0); // accept normally, 1-askBeforeAccepting, 2-acceptForSession,3-acceptForNDays
  736. pref("network.cookie.alwaysAcceptSessionCookies", false);
  737. pref("network.cookie.prefsMigrated",        false);
  738. pref("network.cookie.lifetime.days",        90);
  739.  
  740. // The PAC file to load.  Ignored unless network.proxy.type is 2.
  741. pref("network.proxy.autoconfig_url", "");
  742.  
  743. // If we cannot load the PAC file, then try again (doubling from interval_min
  744. // until we reach interval_max or the PAC file is successfully loaded).
  745. pref("network.proxy.autoconfig_retry_interval_min", 5);    // 5 seconds
  746. pref("network.proxy.autoconfig_retry_interval_max", 300);  // 5 minutes
  747.  
  748. // The following default value is for p3p medium mode.
  749. // See xpfe/components/permissions/content/cookieP3P.xul for the definitions of low/medium/hi
  750. pref("network.cookie.p3p",                  "ffffaaaa");
  751. pref("network.cookie.p3plevel",             1); // 0=low, 1=medium, 2=high, 3=custom
  752.  
  753. pref("network.enablePad",                   false); // Allow client to do proxy autodiscovery
  754. pref("converter.html2txt.structs",          true); // Output structured phrases (strong, em, code, sub, sup, b, i, u)
  755. pref("converter.html2txt.header_strategy",  1); // 0 = no indention; 1 = indention, increased with header level; 2 = numbering and slight indention
  756.  
  757. pref("ime.password.onFocus.dontCare",       false);
  758. pref("ime.password.onBlur.dontCare",        false);
  759.  
  760. pref("intl.accept_languages",               "chrome://navigator/locale/navigator.properties");
  761. pref("intl.accept_charsets",                "iso-8859-1,*,utf-8");
  762. pref("intl.collationOption",                "chrome://navigator-platform/locale/navigator.properties");
  763. pref("intl.menuitems.alwaysappendaccesskeys","chrome://navigator/locale/navigator.properties");
  764. pref("intl.menuitems.insertseparatorbeforeaccesskeys","chrome://navigator/locale/navigator.properties");
  765. pref("intl.charsetmenu.browser.static",     "chrome://navigator/locale/navigator.properties");
  766. pref("intl.charsetmenu.browser.more1",      "chrome://navigator/locale/navigator.properties");
  767. pref("intl.charsetmenu.browser.more2",      "chrome://navigator/locale/navigator.properties");
  768. pref("intl.charsetmenu.browser.more3",      "chrome://navigator/locale/navigator.properties");
  769. pref("intl.charsetmenu.browser.more4",      "chrome://navigator/locale/navigator.properties");
  770. pref("intl.charsetmenu.browser.more5",      "chrome://navigator/locale/navigator.properties");
  771. pref("intl.charsetmenu.browser.unicode",    "chrome://navigator/locale/navigator.properties");
  772. pref("intl.charsetmenu.mailedit",           "chrome://navigator/locale/navigator.properties");
  773. pref("intl.charsetmenu.browser.cache",      "");
  774. pref("intl.charsetmenu.mailview.cache",     "");
  775. pref("intl.charsetmenu.composer.cache",     "");
  776. pref("intl.charsetmenu.browser.cache.size", 5);
  777. pref("intl.charset.detector",               "chrome://navigator/locale/navigator.properties");
  778. pref("intl.charset.default",                "chrome://navigator-platform/locale/navigator.properties");
  779. pref("intl.content.langcode",               "chrome://communicator-region/locale/region.properties");
  780. pref("intl.locale.matchOS",                 false);
  781. // fallback charset list for Unicode conversion (converting from Unicode)
  782. // currently used for mail send only to handle symbol characters (e.g Euro, trademark, smartquotes)
  783. // for ISO-8859-1
  784. pref("intl.fallbackCharsetList.ISO-8859-1", "windows-1252");
  785. pref("font.language.group",                 "chrome://navigator/locale/navigator.properties");
  786.  
  787. pref("images.dither", "auto");
  788. pref("security.directory",              "");
  789.  
  790. pref("signed.applets.codebase_principal_support", false);
  791. pref("security.checkloaduri", true);
  792. pref("security.xpconnect.plugin.unrestricted", true);
  793. // security-sensitive dialogs should delay button enabling. In milliseconds.
  794. pref("security.dialog_enable_delay", 2000);
  795.  
  796. // Modifier key prefs: default to Windows settings,
  797. // menu access key = alt, accelerator key = control.
  798. // Use 17 for Ctrl, 18 for Alt, 224 for Meta, 0 for none. Mac settings in macprefs.js
  799. pref("ui.key.accelKey", 17);
  800. pref("ui.key.menuAccessKey", 18);
  801. pref("ui.key.generalAccessKey", -1);
  802.  
  803. // If generalAccessKey is -1, use the following two prefs instead.
  804. // Use 0 for disabled, 1 for Shift, 2 for Ctrl, 4 for Alt, 8 for Meta
  805. // (values can be combined, e.g. 5 for Alt+Shift)
  806. pref("ui.key.chromeAccess", 4);
  807. pref("ui.key.contentAccess", 5);
  808.  
  809. pref("ui.key.menuAccessKeyFocuses", false); // overridden below
  810. pref("ui.key.saveLink.shift", true); // true = shift, false = meta
  811.  
  812. // Middle-mouse handling
  813. pref("middlemouse.paste", false);
  814. pref("middlemouse.openNewWindow", true);
  815. pref("middlemouse.contentLoadURL", false);
  816. pref("middlemouse.scrollbarPosition", false);
  817.  
  818. // Clipboard behavior
  819. pref("clipboard.autocopy", false);
  820.  
  821. // 0=lines, 1=pages, 2=history , 3=text size
  822. pref("mousewheel.withnokey.action",0);
  823. pref("mousewheel.withnokey.numlines",1);    
  824. pref("mousewheel.withnokey.sysnumlines",true);
  825. pref("mousewheel.withcontrolkey.action",0);
  826. pref("mousewheel.withcontrolkey.numlines",1);
  827. pref("mousewheel.withcontrolkey.sysnumlines",true);
  828. // mousewheel.withshiftkey, see the Mac note below.
  829. pref("mousewheel.withshiftkey.action",0);
  830. pref("mousewheel.withshiftkey.numlines",1);
  831. pref("mousewheel.withshiftkey.sysnumlines",true);
  832. pref("mousewheel.withaltkey.action",2);
  833. pref("mousewheel.withaltkey.numlines",1);
  834. pref("mousewheel.withaltkey.sysnumlines",false);
  835. pref("mousewheel.withmetakey.action",0);
  836. pref("mousewheel.withmetakey.numlines",1);
  837. pref("mousewheel.withmetakey.sysnumlines",true);
  838.  
  839. // on platforms where scroll messages differ between horizontal scroll
  840. // and back/forward button events we can activate them by default
  841. //@line 863 "/cygdrive/K/tinderbuild/src/flock/mozilla/modules/libpref/src/init/all.js"
  842. // activate horizontal scrolling by default
  843. pref("mousewheel.horizscroll.withnokey.action",0);
  844. pref("mousewheel.horizscroll.withnokey.numlines",1);
  845. pref("mousewheel.horizscroll.withnokey.sysnumlines",true);
  846. pref("mousewheel.horizscroll.withcontrolkey.action",0);
  847. pref("mousewheel.horizscroll.withcontrolkey.numlines",1);
  848. pref("mousewheel.horizscroll.withcontrolkey.sysnumlines",true);
  849. pref("mousewheel.horizscroll.withshiftkey.action",0);
  850. pref("mousewheel.horizscroll.withshiftkey.numlines",1);
  851. pref("mousewheel.horizscroll.withshiftkey.sysnumlines",true);
  852. pref("mousewheel.horizscroll.withaltkey.action",2);
  853. pref("mousewheel.horizscroll.withaltkey.numlines",-1);
  854. pref("mousewheel.horizscroll.withaltkey.sysnumlines",false);
  855. pref("mousewheel.horizscroll.withmetakey.action",0);
  856. pref("mousewheel.horizscroll.withmetakey.numlines",1);
  857. pref("mousewheel.horizscroll.withmetakey.sysnumlines",true);
  858. //@line 898 "/cygdrive/K/tinderbuild/src/flock/mozilla/modules/libpref/src/init/all.js"
  859.  
  860. pref("profile.confirm_automigration",true);
  861. // profile.migration_behavior determines how the profiles root is set
  862. // 0 - use NS_APP_USER_PROFILES_ROOT_DIR
  863. // 1 - create one based on the NS4.x profile root
  864. // 2 - use, if not empty, profile.migration_directory otherwise same as 0
  865. pref("profile.migration_behavior",0);
  866. pref("profile.migration_directory", "");
  867.  
  868. // the amount of time (in seconds) that must elapse
  869. // before we think your mozilla profile is defunct
  870. // and you'd benefit from re-migrating from 4.x
  871. // see bug #137886 for more details
  872. //
  873. // if -1, we never think your profile is defunct
  874. // and users will never see the remigrate UI.
  875. pref("profile.seconds_until_defunct", -1);
  876. // We can show it anytime from menus
  877. pref("profile.manage_only_at_launch", false);
  878.  
  879. pref("prefs.converted-to-utf8",false);
  880.  
  881. // --------------------------------------------------
  882. // IBMBIDI 
  883. // --------------------------------------------------
  884. //
  885. // ------------------
  886. //  Text Direction
  887. // ------------------
  888. // 1 = directionLTRBidi *
  889. // 2 = directionRTLBidi
  890. pref("bidi.direction", 1);
  891. // ------------------
  892. //  Text Type
  893. // ------------------
  894. // 1 = charsettexttypeBidi *
  895. // 2 = logicaltexttypeBidi
  896. // 3 = visualtexttypeBidi
  897. pref("bidi.texttype", 1);
  898. // ------------------
  899. //  Controls Text Mode
  900. // ------------------
  901. // 1 = logicalcontrolstextmodeBidiCmd
  902. // 2 = visualcontrolstextmodeBidi <-- NO LONGER SUPPORTED
  903. // 3 = containercontrolstextmodeBidi *
  904. pref("bidi.controlstextmode", 1);
  905. // ------------------
  906. //  Numeral Style
  907. // ------------------
  908. // 0 = nominalnumeralBidi *
  909. // 1 = regularcontextnumeralBidi
  910. // 2 = hindicontextnumeralBidi
  911. // 3 = arabicnumeralBidi
  912. // 4 = hindinumeralBidi
  913. pref("bidi.numeral", 0);
  914. // ------------------
  915. //  Support Mode
  916. // ------------------
  917. // 1 = mozillaBidisupport *
  918. // 2 = OsBidisupport
  919. // 3 = disableBidisupport
  920. pref("bidi.support", 1);
  921. // ------------------
  922. //  Charset Mode
  923. // ------------------
  924. // 1 = doccharactersetBidi *
  925. // 2 = defaultcharactersetBidi
  926. pref("bidi.characterset", 1);
  927.  
  928.  
  929. // used for double-click word selection behavior. Win will override.
  930. pref("layout.word_select.eat_space_to_next_word", false);
  931. pref("layout.word_select.stop_at_punctuation", true);
  932.  
  933. // controls caret style during text selection
  934. // 0 = use platform default
  935. // 1 = caret moves and blinks as when there is no selection
  936. // 2 = caret moves to selection edge and is not visible during selection
  937. pref("layout.selection.caret_style", 0);
  938.  
  939. // pref to control whether or not to replace backslashes with Yen signs
  940. // in documents encoded in one of Japanese legacy encodings (EUC-JP, 
  941. // Shift_JIS, ISO-2022-JP)
  942. pref("layout.enable_japanese_specific_transform", false);
  943.  
  944. // pref to force frames to be resizable
  945. pref("layout.frames.force_resizability", false);
  946.  
  947. // pref to report CSS errors to the error console
  948. pref("layout.css.report_errors", true);
  949.  
  950. // pref to permit users to make verified SOAP calls by default
  951. pref("capability.policy.default.SOAPCall.invokeVerifySourceHeader", "allAccess");
  952.  
  953. // if true, allow plug-ins to override internal imglib decoder mime types in full-page mode
  954. pref("plugin.override_internal_types", false);
  955. pref("plugin.expose_full_path", false); // if true navigator.plugins reveals full path
  956.  
  957. // See bug 136985.  Gives embedders a pref to hook into to show
  958. // a popup blocker if they choose.
  959. pref("browser.popups.showPopupBlocker", true);
  960.  
  961. // Pref to control whether the viewmanager code does double-buffering or not
  962. // See http://bugzilla.mozilla.org/show_bug.cgi?id=169483 for further details...
  963. pref("viewmanager.do_doublebuffering", true);
  964.  
  965. // which files will be selected for roaming by default.
  966. // See sroaming/content/prefs/all.js
  967. pref("roaming.default.files", "bookmarks.html,abook.mab,cookies.txt");
  968. // display some general warning to the user about making backups, security etc.
  969. pref("roaming.showInitialWarning", true);
  970.  
  971. // whether use prefs from system
  972. pref("config.use_system_prefs", false);
  973.  
  974. // if the system has enabled accessibility
  975. pref("config.use_system_prefs.accessibility", false);
  976.  
  977. /*
  978.  * What are the entities that you want Mozilla to save using mnemonic
  979.  * names rather than numeric codes? E.g. If set, we'll output  
  980.  * otherwise, we may output 0xa0 depending on the charset.
  981.  *
  982.  * "none"   : don't use any entity names; only use numeric codes.
  983.  * "basic"  : use entity names just for   & < > " for 
  984.  *            interoperability/exchange with products that don't support more
  985.  *            than that.
  986.  * "latin1" : use entity names for 8bit accented letters and other special
  987.  *            symbols between 128 and 255.
  988.  * "html"   : use entity names for 8bit accented letters, greek letters, and
  989.  *            other special markup symbols as defined in HTML4.
  990.  */
  991. //pref("editor.encode_entity",                 "html");
  992.  
  993. pref("editor.resizing.preserve_ratio",       true);
  994. pref("editor.positioning.offset",            0);
  995.  
  996. pref("dom.max_chrome_script_run_time", 20);
  997. pref("dom.max_script_run_time", 10);
  998.  
  999. pref("svg.enabled", true);
  1000.  
  1001. //@line 1041 "/cygdrive/K/tinderbuild/src/flock/mozilla/modules/libpref/src/init/all.js"
  1002. pref("font.name.serif.ar", "Times New Roman");
  1003. pref("font.name.sans-serif.ar", "Arial");
  1004. pref("font.name.monospace.ar", "Courier New");
  1005. pref("font.name.cursive.ar", "Comic Sans MS");
  1006.  
  1007. pref("font.name.serif.el", "Times New Roman");
  1008. pref("font.name.sans-serif.el", "Arial");
  1009. pref("font.name.monospace.el", "Courier New");
  1010. pref("font.name.cursive.el", "Comic Sans MS");
  1011.  
  1012. pref("font.name.serif.he", "Narkisim");
  1013. pref("font.name.sans-serif.he", "Arial");
  1014. pref("font.name.monospace.he", "Fixed Miriam Transparent");
  1015. pref("font.name.cursive.he", "Guttman Yad");
  1016. pref("font.name-list.serif.he", "Narkisim, David");
  1017. pref("font.name-list.monospace.he", "Fixed Miriam Transparent, Miriam Fixed, Rod, Courier New");
  1018. pref("font.name-list.cursive.he", "Guttman Yad, Ktav, Arial");
  1019.  
  1020. // For CJK fonts, we list a font twice in name-list, once in the native script and once in English
  1021. // because the name of a CJK font returned by Win32 API is beyond our control and depends on
  1022. // whether or not Mozilla is run on CJK Win 9x/ME or Win 2k/XP with a CJK locale.
  1023. // (see bug 227815)
  1024.  
  1025. pref("font.name.serif.ja", "∩╝¡∩╝│ ∩╝░µÿĵ£¥"); // "MS PMincho"
  1026. pref("font.name.sans-serif.ja", "∩╝¡∩╝│ ∩╝░πé┤πé╖πââπé»"); // "MS PGothic"
  1027. pref("font.name.monospace.ja", "∩╝¡∩╝│ πé┤πé╖πââπé»"); // "MS Gothic"
  1028. pref("font.name-list.serif.ja", "MS PMincho, ∩╝¡∩╝│ ∩╝░µÿĵ£¥, MS Mincho, MS PGothic, MS Gothic");
  1029. pref("font.name-list.sans-serif.ja", "MS PGothic, ∩╝¡∩╝│ ∩╝░πé┤πé╖πââπé», MS Gothic, MS PMincho, MS Mincho");
  1030. pref("font.name-list.monospace.ja", "MS Gothic, ∩╝¡∩╝│ πé┤πé╖πââπé», MS Mincho, ∩╝¡∩╝│ µÿĵ£¥, MS PGothic, MS PMincho");
  1031.  
  1032. pref("font.name.serif.ko", "δ░öφâò"); // "Batang" 
  1033. pref("font.name.sans-serif.ko", "Ω╡┤δª╝"); // "Gulim" 
  1034. pref("font.name.monospace.ko", "Ω╡┤δª╝∞▓┤"); // "GulimChe" 
  1035. pref("font.name.cursive.ko", "Ω╢ü∞ä£"); // "Gungseo"
  1036.  
  1037. pref("font.name-list.serif.ko", "Batang, δ░öφâò, Gulim, Ω╡┤δª╝"); 
  1038. pref("font.name-list.sans-serif.ko", "Gulim, Ω╡┤δª╝"); 
  1039. pref("font.name-list.monospace.ko", "GulimChe, Ω╡┤δª╝∞▓┤"); 
  1040. pref("font.name-list.cursive.ko", "Gungseo, Ω╢ü∞ä£"); 
  1041.  
  1042. pref("font.name.serif.th", "Times New Roman");
  1043. pref("font.name.sans-serif.th", "Arial");
  1044. pref("font.name.monospace.th", "Courier New");
  1045. pref("font.name.cursive.th", "Comic Sans MS");
  1046.  
  1047. pref("font.name.serif.tr", "Times New Roman");
  1048. pref("font.name.sans-serif.tr", "Arial");
  1049. pref("font.name.monospace.tr", "Courier New");
  1050. pref("font.name.cursive.tr", "Comic Sans MS");
  1051.  
  1052. pref("font.name.serif.x-baltic", "Times New Roman");
  1053. pref("font.name.sans-serif.x-baltic", "Arial");
  1054. pref("font.name.monospace.x-baltic", "Courier New");
  1055. pref("font.name.cursive.x-baltic", "Comic Sans MS");
  1056.  
  1057. pref("font.name.serif.x-central-euro", "Times New Roman");
  1058. pref("font.name.sans-serif.x-central-euro", "Arial");
  1059. pref("font.name.monospace.x-central-euro", "Courier New");
  1060. pref("font.name.cursive.x-central-euro", "Comic Sans MS");
  1061.  
  1062. pref("font.name.serif.x-cyrillic", "Times New Roman");
  1063. pref("font.name.sans-serif.x-cyrillic", "Arial");
  1064. pref("font.name.monospace.x-cyrillic", "Courier New");
  1065. pref("font.name.cursive.x-cyrillic", "Comic Sans MS");
  1066.  
  1067. pref("font.name.serif.x-unicode", "Times New Roman");
  1068. pref("font.name.sans-serif.x-unicode", "Arial");
  1069. pref("font.name.monospace.x-unicode", "Courier New");
  1070. pref("font.name.cursive.x-unicode", "Comic Sans MS");
  1071.  
  1072. pref("font.name.serif.x-western", "Times New Roman");
  1073. pref("font.name.sans-serif.x-western", "Arial");
  1074. pref("font.name.monospace.x-western", "Courier New");
  1075. pref("font.name.cursive.x-western", "Comic Sans MS");
  1076.  
  1077. pref("font.name.serif.zh-CN", "σ«ïΣ╜ô"); //MS Song
  1078. pref("font.name.sans-serif.zh-CN", "σ«ïΣ╜ô"); //MS Song
  1079. pref("font.name.monospace.zh-CN", "σ«ïΣ╜ô"); //MS Song
  1080. pref("font.name-list.serif.zh-CN", "MS Song, σ«ïΣ╜ô, SimSun");
  1081. pref("font.name-list.sans-serif.zh-CN", "MS Song, σ«ïΣ╜ô, SimSun");
  1082. pref("font.name-list.monospace.zh-CN", "MS Song, σ«ïΣ╜ô, SimSun");
  1083.  
  1084. // Per Taiwanese users' demand. They don't want to use TC fonts for
  1085. // rendering Latin letters. (bug 88579)
  1086. pref("font.name.serif.zh-TW", "Times New Roman"); 
  1087. pref("font.name.sans-serif.zh-TW", "Arial"); 
  1088. pref("font.name.monospace.zh-TW", "τ┤░µÿÄΘ½ö");  // MingLiU
  1089. pref("font.name-list.serif.zh-TW", "µû░τ┤░µÿÄΘ½ö,PMingLiu,τ┤░µÿÄΘ½ö,MingLiU"); 
  1090. pref("font.name-list.sans-serif.zh-TW", "µû░τ┤░µÿÄΘ½ö,PMingLiU,τ┤░µÿÄΘ½ö,MingLiU");
  1091. pref("font.name-list.monospace.zh-TW", "MingLiU,τ┤░µÿÄΘ½ö");
  1092.  
  1093. // hkscsm3u.ttf (HKSCS-2001) :  http://www.microsoft.com/hk/hkscs 
  1094. // Hong Kong users have the same demand about glyphs for Latin letters (bug 88579) 
  1095. pref("font.name.serif.zh-HK", "Times New Roman"); 
  1096. pref("font.name.sans-serif.zh-HK", "Arial"); 
  1097. pref("font.name.monospace.zh-HK", "τ┤░µÿÄΘ½ö_HKSCS"); 
  1098. pref("font.name-list.serif.zh-HK", "τ┤░µÿÄΘ½ö_HKSCS, MingLiu_HKSCS, Ming(for ISO10646), MingLiU, τ┤░µÿÄΘ½ö"); 
  1099. pref("font.name-list.sans-serif.zh-HK", "τ┤░µÿÄΘ½ö_HKSCS, MingLiU_HKSCS, Ming(for ISO10646), MingLiU, τ┤░µÿÄΘ½ö");  
  1100. pref("font.name-list.monospace.zh-HK", "MingLiU_HKSCS,  τ┤░µÿÄΘ½ö_HKSCS, Ming(for ISO10646), MingLiU, τ┤░µÿÄΘ½ö");
  1101.  
  1102. pref("font.name.serif.x-devanagari", "Mangal");
  1103. pref("font.name.sans-serif.x-devanagari", "Raghindi");
  1104. pref("font.name.monospace.x-devanagari", "Mangal");
  1105. pref("font.name-list.serif.x-devanagari", "Mangal, Raghindi");
  1106. pref("font.name-list.monospace.x-devanagari", "Mangal, Raghindi");
  1107.  
  1108. pref("font.name.serif.x-tamil", "Latha");
  1109. pref("font.name.sans-serif.x-tamil", "Code2000");
  1110. pref("font.name.monospace.x-tamil", "Latha");
  1111. pref("font.name-list.serif.x-tamil", "Latha, Code2000");
  1112. pref("font.name-list.monospace.x-tamil", "Latha, Code2000");
  1113.  
  1114. //@line 1154 "/cygdrive/K/tinderbuild/src/flock/mozilla/modules/libpref/src/init/all.js"
  1115.  
  1116. pref("font.name.serif.x-armn", "Sylfaen");
  1117. pref("font.name.sans-serif.x-armn", "Arial AMU");
  1118. pref("font.name.monospace.x-armn", "Arial AMU");
  1119. pref("font.name-list.serif.x-armn", "Sylfaen,Arial Unicode MS, Code2000");
  1120. pref("font.name-list.monospace.x-armn", "Arial AMU, Arial Unicode MS, Code2000");
  1121.  
  1122. pref("font.name.serif.x-beng", "Akaash");
  1123. pref("font.name.sans-serif.x-beng", "Likhan");
  1124. pref("font.name.monospace.x-beng", "Mitra Mono");
  1125. pref("font.name-list.serif.x-beng", "Akaash, Ekushey Punarbhaba, Code2000, Arial Unicode MS"); 
  1126. pref("font.name-list.monospace.x-beng", "Likhan, Mukti Narrow, Code 2000, Arial Unicode MS");
  1127.  
  1128. pref("font.name.serif.x-cans", "Aboriginal Serif");
  1129. pref("font.name.sans-serif.x-cans", "Aboriginal Sans");
  1130. pref("font.name.monospace.x-cans", "Aboriginal Sans");
  1131. pref("font.name-list.serif.x-cans", "Aboriginal Serif, BJCree Uni");
  1132. pref("font.name-list.monospace.x-cans", "Aboriginal Sans, OskiDakelh, Pigiarniq, Uqammaq");
  1133.  
  1134. pref("font.name.serif.x-ethi", "Visual Geez Unicode");
  1135. pref("font.name.sans-serif.x-ethi", "GF Zemen Unicode");
  1136. pref("font.name.cursive.x-ethi", "Visual Geez Unicode Title");
  1137. pref("font.name.monospace.x-ethi", "Ethiopia Jiret");
  1138. pref("font.name-list.serif.x-ethi", "Visual Geez Unicode, Visual Geez Unicode Agazian, Code2000");
  1139. pref("font.name-list.monospace.x-ethi", "Ethiopia Jiret, Code2000");
  1140.  
  1141. pref("font.name.serif.x-geor", "Sylfaen");
  1142. pref("font.name.sans-serif.x-geor", "BPG Classic 99U");
  1143. pref("font.name.monospace.x-geor", "Code2000");
  1144. pref("font.name-list.serif.x-geor", "Sylfaen, BPG Paata Khutsuri U, TITUS Cyberbit Basic"); 
  1145. pref("font.name-list.monospace.x-geor", "BPG Classic 99U, Code2000, Arial Unicode MS");
  1146.  
  1147. pref("font.name.serif.x-gujr", "Shruti");
  1148. pref("font.name.sans-serif.x-gujr", "Shruti");
  1149. pref("font.name.monospace.x-gujr", "Code2000");
  1150. pref("font.name-list.serif.x-gujr", "Shruti, Code2000, Arial Unicode MS"); 
  1151. pref("font.name-list.monospace.x-gujr", "Code2000, Shruti, Arial Unicode MS");
  1152.  
  1153. pref("font.name.serif.x-guru", "Raavi");
  1154. pref("font.name.sans-serif.x-guru", "Code2000");
  1155. pref("font.name.monospace.x-guru", "Code2000");
  1156. pref("font.name-list.serif.x-guru", "Raavi, Saab, Code2000, Arial Unicode MS"); 
  1157. pref("font.name-list.monospace.x-guru", "Code2000, Raavi, Saab, Arial Unicode MS");
  1158.  
  1159. pref("font.name.serif.x-khmr", "PhnomPenh OT");
  1160. pref("font.name.sans-serif.x-khmr", "Khmer OS");
  1161. pref("font.name.monospace.x-khmr", "Code2000");
  1162. pref("font.name-list.serif.x-khmr", "PhnomPenh OT,.Mondulkiri U GR 1.5, Khmer OS");
  1163. pref("font.name-list.monospace.x-khmr", "Code2000, Khmer OS, Khmer OS System");
  1164.  
  1165. pref("font.name.serif.x-mlym", "Kartika");
  1166. pref("font.name.sans-serif.x-mlym", "Anjali-Beta");
  1167. pref("font.name.monospace.x-mlym", "Code2000");
  1168. pref("font.name-list.serif.x-mlym", "Kartika, ThoolikaUnicode, Code2000, Arial Unicode MS");
  1169. pref("font.name-list.monospace.x-mlym", "Code2000, Anjali-Beta");
  1170.  
  1171. pref("font.default.ar", "sans-serif");
  1172. pref("font.size.variable.ar", 16);
  1173. pref("font.size.fixed.ar", 13);
  1174.  
  1175. pref("font.default.el", "serif");
  1176. pref("font.size.variable.el", 16);
  1177. pref("font.size.fixed.el", 13);
  1178.  
  1179. pref("font.default.he", "sans-serif");
  1180. pref("font.size.variable.he", 16);
  1181. pref("font.size.fixed.he", 13);
  1182.  
  1183. pref("font.default.ja", "sans-serif");
  1184. pref("font.size.variable.ja", 16);
  1185. pref("font.size.fixed.ja", 16);
  1186.  
  1187. pref("font.default.ko", "sans-serif");
  1188. pref("font.size.variable.ko", 16);
  1189. pref("font.size.fixed.ko", 16);
  1190.  
  1191. pref("font.default.th", "serif");
  1192. pref("font.size.variable.th", 16);
  1193. pref("font.size.fixed.th", 13);
  1194.  
  1195. pref("font.default.tr", "serif");
  1196. pref("font.size.variable.tr", 16);
  1197. pref("font.size.fixed.tr", 13);
  1198.  
  1199. pref("font.default.x-baltic", "serif");
  1200. pref("font.size.variable.x-baltic", 16);
  1201. pref("font.size.fixed.x-baltic", 13);
  1202.  
  1203. pref("font.default.x-central-euro", "serif");
  1204. pref("font.size.variable.x-central-euro", 16);
  1205. pref("font.size.fixed.x-central-euro", 13);
  1206.  
  1207. pref("font.default.x-cyrillic", "serif");
  1208. pref("font.size.variable.x-cyrillic", 16);
  1209. pref("font.size.fixed.x-cyrillic", 13);
  1210.  
  1211. pref("font.default.x-devanagari", "serif");
  1212. pref("font.size.variable.x-devanagari", 16);
  1213. pref("font.size.fixed.x-devanagari", 13);
  1214.  
  1215. pref("font.default.x-tamil", "serif");
  1216. pref("font.size.variable.x-tamil", 16);
  1217. pref("font.size.fixed.x-tamil", 13);
  1218.  
  1219. pref("font.default.x-armn", "serif");
  1220. pref("font.size.variable.x-armn", 16);
  1221. pref("font.size.fixed.x-armn", 13);
  1222.  
  1223. pref("font.default.x-beng", "serif");
  1224. pref("font.size.variable.x-beng", 16);
  1225. pref("font.size.fixed.x-beng", 13);
  1226.  
  1227. pref("font.default.x-cans", "serif");
  1228. pref("font.size.variable.x-cans", 16);
  1229. pref("font.size.fixed.x-cans", 13);
  1230.  
  1231. pref("font.default.x-ethi", "serif");
  1232. pref("font.size.variable.x-ethi", 16);
  1233. pref("font.size.fixed.x-ethi", 13);
  1234.  
  1235. pref("font.default.x-geor", "serif");
  1236. pref("font.size.variable.x-geor", 16);
  1237. pref("font.size.fixed.x-geor", 13);
  1238.  
  1239. pref("font.default.x-gujr", "serif");
  1240. pref("font.size.variable.x-gujr", 16);
  1241. pref("font.size.fixed.x-gujr", 13);
  1242.  
  1243. pref("font.default.x-guru", "serif");
  1244. pref("font.size.variable.x-guru", 16);
  1245. pref("font.size.fixed.x-guru", 13);
  1246.  
  1247. pref("font.default.x-khmr", "serif");
  1248. pref("font.size.variable.x-khmr", 16);
  1249. pref("font.size.fixed.x-khmr", 13);
  1250.  
  1251. pref("font.default.x-mlym", "serif");
  1252. pref("font.size.variable.x-mlym", 16);
  1253. pref("font.size.fixed.x-mlym", 13);
  1254.  
  1255. pref("font.default.x-unicode", "serif");
  1256. pref("font.size.variable.x-unicode", 16);
  1257. pref("font.size.fixed.x-unicode", 13);
  1258.  
  1259. pref("font.default.x-western", "serif");
  1260. pref("font.size.variable.x-western", 16);
  1261. pref("font.size.fixed.x-western", 13);
  1262.  
  1263. pref("font.default.zh-CN", "sans-serif");
  1264. pref("font.size.variable.zh-CN", 16);
  1265. pref("font.size.fixed.zh-CN", 16);
  1266.  
  1267. pref("font.default.zh-TW", "sans-serif");
  1268. pref("font.size.variable.zh-TW", 16);
  1269. pref("font.size.fixed.zh-TW", 16);
  1270.  
  1271. pref("font.default.zh-HK", "sans-serif");
  1272. pref("font.size.variable.zh-HK", 16);
  1273. pref("font.size.fixed.zh-HK", 16);
  1274.  
  1275. pref("ui.key.menuAccessKeyFocuses", true);
  1276.  
  1277. // override double-click word selection behavior.
  1278. pref("layout.word_select.eat_space_to_next_word", true);
  1279.  
  1280. // print_extra_margin enables platforms to specify an extra gap or margin
  1281. // around the content of the page for Print Preview only
  1282. pref("print.print_extra_margin", 90); // twips (90 twips is an eigth of an inch)
  1283.  
  1284. // This indicates whether it should use the native dialog or the XP Dialog
  1285. pref("print.use_native_print_dialog", true);
  1286.  
  1287. // Whether to extend the native dialog with information on printing frames.
  1288. pref("print.extend_native_print_dialog", true);
  1289.  
  1290. // Locate Java by scanning the Sun JRE installation directory with a minimum version
  1291. // Note: Does not scan if security.enable_java is not true
  1292. pref("plugin.scan.SunJRE", "1.3");
  1293.  
  1294. // Locate plugins by scanning the Adobe Acrobat installation directory with a minimum version
  1295. pref("plugin.scan.Acrobat", "5.0");
  1296.  
  1297. // Locate plugins by scanning the Quicktime installation directory with a minimum version
  1298. pref("plugin.scan.Quicktime", "5.0");
  1299.  
  1300. // Locate and scan the Window Media Player installation directory for plugins with a minimum version
  1301. pref("plugin.scan.WindowsMediaPlayer", "7.0");
  1302.  
  1303. // Locate plugins by the directories specified in the Windows registry for PLIDs
  1304. // Which is currently HKLM\Software\MozillaPlugins\xxxPLIDxxx\Path
  1305. pref("plugin.scan.plid.all", true);
  1306.  
  1307. // Controls the scanning of the Navigator 4.x directory for plugins
  1308. // When pref is missing, the default is to pickup popular plugins such as
  1309. // Flash, Shockwave, Acrobat, and Quicktime. If set to true, ALL plugins
  1310. // will be picked up and if set to false the scan will not happen at all
  1311. //pref("plugin.scan.4xPluginFolder", false);
  1312.  
  1313. // Help Windows NT, 2000, and XP dialup a RAS connection
  1314. // when a network address is unreachable.
  1315. pref("network.autodial-helper.enabled", true);
  1316.  
  1317. // Pref to control whether we set ddeexec subkeys for the http
  1318. // Internet shortcut protocol if we are handling it.  These
  1319. // subkeys will be set only while we are running (to avoid the
  1320. // problem of Windows showing an alert when it tries to use DDE
  1321. // and we're not already running).
  1322. pref("advanced.system.supportDDEExec", true);
  1323.  
  1324. // Use CP932 compatible map for JIS X 0208
  1325. pref("intl.jis0208.map", "CP932");
  1326.  
  1327. // Switch the keyboard layout per window
  1328. pref("intl.keyboard.per_window_layout", false);
  1329.  
  1330. //@line 1371 "/cygdrive/K/tinderbuild/src/flock/mozilla/modules/libpref/src/init/all.js"
  1331.  
  1332. //@line 1563 "/cygdrive/K/tinderbuild/src/flock/mozilla/modules/libpref/src/init/all.js"
  1333.  
  1334. //@line 1752 "/cygdrive/K/tinderbuild/src/flock/mozilla/modules/libpref/src/init/all.js"
  1335.  
  1336. //@line 1841 "/cygdrive/K/tinderbuild/src/flock/mozilla/modules/libpref/src/init/all.js"
  1337.  
  1338. //@line 2256 "/cygdrive/K/tinderbuild/src/flock/mozilla/modules/libpref/src/init/all.js"
  1339.  
  1340. //@line 2324 "/cygdrive/K/tinderbuild/src/flock/mozilla/modules/libpref/src/init/all.js"
  1341.  
  1342. //@line 2350 "/cygdrive/K/tinderbuild/src/flock/mozilla/modules/libpref/src/init/all.js"
  1343.  
  1344. //@line 2370 "/cygdrive/K/tinderbuild/src/flock/mozilla/modules/libpref/src/init/all.js"
  1345.  
  1346. //@line 2378 "/cygdrive/K/tinderbuild/src/flock/mozilla/modules/libpref/src/init/all.js"
  1347.  
  1348.